Conditions | 1 |
Total Lines | 5 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import {MigrationInterface, QueryRunner} from "typeorm"; |
||
12 | |||
13 | public async down(queryRunner: QueryRunner): Promise<void> { |
||
14 | await queryRunner.query(`ALTER TABLE "user_savings_record" DROP CONSTRAINT "FK_b88b218db366c70a2ec33e424a2"`); |
||
15 | await queryRunner.query(`ALTER TABLE "user_savings_record" DROP COLUMN "interestRateId"`); |
||
16 | await queryRunner.query(`DROP TABLE "interest_rate"`); |
||
17 | } |
||
20 |